home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / agora.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  66 lines

  1. #
  2. # This script was written by Matt Moore <matt.moore@westpoint.ltd.uk>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10836);
  10.  script_bugtraq_id(3702);
  11.  script_version ("$Revision: 1.16 $");
  12.  script_cve_id("CVE-2001-1199");
  13.  
  14.  name["english"] = "Agora CGI Cross Site Scripting";
  15.  name["francais"] = "Agora CGI Cross Site Scripting";
  16.  script_name(english:name["english"], francais:name["francais"]);
  17.  
  18.  desc["english"] = "
  19.  Agora is a CGI based e-commerce package. Due to poor input validation, 
  20.  Agora allows an attacker to execute cross-site scripting attacks. 
  21.  For example:
  22.  
  23. http://www.example.com/store/agora.cgi?cart_id=<SCRIPT>alert(document.domain)</SCRIPT>&xm=on&product=HTML
  24.  
  25. Solution : At the time of writing this test, no solution was available 
  26. for this problem. However, a new version of Agora may become available 
  27. at http://www.agoracgi.com. Please check the Agora CGI web site or 
  28. contact your vendor for the latest version.
  29.  
  30. Risk factor : High";
  31.  
  32.  script_description(english:desc["english"]);
  33.  
  34.  summary["english"] = "Tests for Agora CGI Cross Site Scripting";
  35.  
  36.  script_summary(english:summary["english"]);
  37.  
  38.  script_category(ACT_ATTACK);
  39.  
  40.  script_copyright(english:"This script is Copyright (C) 2002 Matt Moore",
  41.         francais:"Ce script est Copyright (C) 2002 Matt Moore");
  42.  family["english"] = "CGI abuses : XSS";
  43.  family["francais"] = "Abus de CGI";
  44.  script_family(english:family["english"], francais:family["francais"]);
  45.  script_dependencie("find_service.nes", "http_version.nasl", "cross_site_scripting.nasl");
  46.  script_require_ports("Services/www", 80);
  47.  exit(0);
  48. }
  49.  
  50. # Check starts here
  51.  
  52. include("http_func.inc");
  53. include("http_keepalive.inc");
  54.  
  55. port = get_http_port(default:80);
  56.  
  57. if ( get_kb_item("www/" + port + "/generic_xss") ) exit(0);
  58.  
  59. if(get_port_state(port))
  60.  req = http_get(item:"/store/agora.cgi?cart_id=<SCRIPT>alert(document.domain)</SCRIPT>&xm=on&product=HTML", port:port);
  61.  r = http_keepalive_send_recv(port:port, data:req, bodyonly:1);
  62.  if ( r == NULL ) exit(0);
  63.  if("<SCRIPT>alert(document.domain)</SCRIPT>" >< r)    security_warning(port);
  64. }
  65.